home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gsccode.h < prev    next >
C/C++ Source or Header  |  1997-03-06  |  2KB  |  65 lines

  1. /* Copyright (C) 1993, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsccode.h */
  20. /* Types for character codes */
  21.  
  22. #ifndef gsccode_INCLUDED
  23. #  define gsccode_INCLUDED
  24.  
  25. /*
  26.  * Define a character code.  Normally this is just a single byte from a
  27.  * string, but because of composite fonts, character codes must be
  28.  * at least 32 bits.
  29.  */
  30. typedef ulong gs_char;
  31. #define gs_no_char ((gs_char)~0L)
  32.  
  33. /*
  34.  * Define a character glyph code, a.k.a. character name.
  35.  * gs_glyphs from 0 to 2^31-1 are (PostScript) names; gs_glyphs 2^31 and
  36.  * above are CIDs, biased by 2^31.
  37.  */
  38. typedef ulong gs_glyph;
  39. #define gs_no_glyph ((gs_glyph)0x7fffffff)
  40. #define gs_min_cid_glyph ((gs_glyph)0x80000000)
  41. #define gs_max_glyph max_ulong
  42.  
  43. /* Define a procedure for marking a gs_glyph during garbage collection. */
  44. typedef bool (*gs_glyph_mark_proc_t)(P2(gs_glyph glyph, void *proc_data));
  45.  
  46. /* Define a procedure for mapping a gs_glyph to its (string) name. */
  47. #define gs_proc_glyph_name(proc)\
  48.   const char *proc(P2(gs_glyph, uint *))
  49. /* The following typedef is needed because ansi2knr can't handle */
  50. /* gs_proc_glyph_name((*procname)) in a formal argument list. */
  51. typedef gs_proc_glyph_name((*gs_proc_glyph_name_t));
  52.  
  53. /* Define a procedure for accessing the known encodings. */
  54. #define gs_proc_known_encode(proc)\
  55.   gs_glyph proc(P2(gs_char, int))
  56. typedef gs_proc_known_encode((*gs_proc_known_encode_t));
  57.  
  58. /* Define the callback procedure vector for character to xglyph mapping. */
  59. typedef struct gx_xfont_callbacks_s {
  60.     gs_proc_glyph_name((*glyph_name));
  61.     gs_proc_known_encode((*known_encode));
  62. } gx_xfont_callbacks;
  63.  
  64. #endif                /* gsccode_INCLUDED */
  65.